Misc small doc updates
authorGlenn Morris <rgm@gnu.org>
Fri, 24 Jan 2014 07:29:39 +0000 (23:29 -0800)
committerGlenn Morris <rgm@gnu.org>
Fri, 24 Jan 2014 07:29:39 +0000 (23:29 -0800)
* doc/emacs/ack.texi (Acknowledgments): No longer mention obsolete xesam.el.

* lisp/woman.el (woman-default-faces, woman-monochrome-faces):
Fix obsolescence specification.

* etc/NEWS: Related markup.

doc/emacs/ChangeLog
doc/emacs/ack.texi
etc/NEWS
lisp/ChangeLog
lisp/woman.el

index 92056bd36bf55c2ac8fa6d3cc2ffe4a7ff26c59d..ddb6aa5c377d69ffc68da987db1c1c53395163e4 100644 (file)
@@ -1,5 +1,7 @@
 2014-01-24  Glenn Morris  <rgm@gnu.org>
 
+       * ack.texi (Acknowledgments): No longer mention obsolete xesam.el.
+
        * files.texi (Interlocking): Copyedit.
 
 2014-01-23  Glenn Morris  <rgm@gnu.org>
index a7df1544aefb7274e7af9802558bbbce85867315..b3b21a277e983e33f4c7f2fc6f23c3ae5fbff37d 100644 (file)
@@ -51,8 +51,12 @@ files.
 @item
 Michael Albinus wrote @file{dbus.el}, a package that implements the
 D-Bus message bus protocol; @file{zeroconf.el}, a mode for browsing
-Avahi services; @file{xesam.el}, a Xesam-based search engine
-interface; and @file{secrets.el}, an interface to keyring daemons for
+Avahi services;
+@ignore
+@c obsolete
+@file{xesam.el}, a Xesam-based search engine interface;
+@end ignore
+and @file{secrets.el}, an interface to keyring daemons for
 storing confidential data.  He and Kai Großjohann wrote the Tramp package, which
 provides transparent remote file editing using rcp, ssh, ftp, and
 other network protocols.  He and Daniel Pittman wrote
index 39fdefeb8f08947ab89ba3984280bf7efc27336e..89d78d79efbca822540e9f7c1fc4487bcf410ca9 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -851,6 +851,7 @@ because it is moved to vc-cvs.el.
 ---
 *** New commands: `vhdl-fix-statement-region', `vhdl-fix-statement-buffer'.
 
+---
 ** The Woman commands `woman-default-faces' and `woman-monochrome-faces'
 are obsolete.  Customize the `woman-*' faces instead.
 
@@ -867,6 +868,7 @@ are obsolete.  Customize the `woman-*' faces instead.
 
 *** The previous version of todo-mode.el is obsolete and renamed otodo-mode.el.
 
+---
 *** xesam.el is obsolete, because the XESAM project has been canceled.
 
 +++
@@ -1293,6 +1295,7 @@ meant to be used by other packages.
 \f
 * Changes in Emacs 24.4 on Non-Free Operating Systems
 
+---
 ** The procedure for building Emacs on MS-Windows has changed.
 It is now built by running the same configure script as on all other
 platforms.  This requires the MSYS environment and MinGW development
index 74d42d9142f2e4d6bfb319eb856d0ccb779ba554..e542c9a19a95c49172888a5fc409eb588fa25d2b 100644 (file)
@@ -8,6 +8,9 @@
 
 2014-01-24  Glenn Morris  <rgm@gnu.org>
 
+       * woman.el (woman-default-faces, woman-monochrome-faces):
+       Fix obsolescence specification.
+
        * subr.el (with-demoted-errors): Doc fix.
 
 2014-01-23  Stefan Monnier  <monnier@iro.umontreal.ca>
index 7100e4b61cf2a860d970d9654ccd7925a57f7c9b..e28f1c9cace237a6df48e185db44c6965db9b403 100644 (file)
@@ -949,7 +949,7 @@ or different fonts."
 
 (defun woman-default-faces ()
   "Set foreground colors of italic and bold faces to their default values."
-  (declare (obsolete choose-completion-guess-base-position "23.2"))
+  (declare (obsolete "customize the woman-* faces instead." "24.4"))
   (interactive)
   (face-spec-set 'woman-italic (face-user-default-spec 'woman-italic))
   (face-spec-set 'woman-bold (face-user-default-spec 'woman-bold)))
@@ -957,7 +957,7 @@ or different fonts."
 (defun woman-monochrome-faces ()
   "Set foreground colors of italic and bold faces to that of the default face.
 This is usually either black or white."
-  (declare (obsolete choose-completion-guess-base-position "23.2"))
+  (declare (obsolete "customize the woman-* faces instead." "24.4"))
   (interactive)
   (set-face-foreground 'woman-italic 'unspecified)
   (set-face-foreground 'woman-bold 'unspecified))